home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / DevCon / Milan_1991 / Devcon91.2 / Arexx / simplerexx / MakeFile next >
Encoding:
Makefile  |  1992-09-01  |  604 b   |  28 lines

  1. #
  2. # MakeFile for SimpleRexx and SimpleRexxExample
  3. #
  4. # This requires the latest version of Amiga.lib for 2.0 to link.
  5. # Otherwise you will also need to link with rexxvars.o from the
  6. # RVI distribution.
  7. #
  8.  
  9. CFLAGS= -b1 -cfist -d0 -ms0 -rr1 -v -w
  10.  
  11. HEAD=    SimpleRexx.h
  12.  
  13. CODE=    SimpleRexx.c SimpleRexxExample.c
  14.  
  15. OBJS=    SimpleRexx.o SimpleRexxExample.o
  16.  
  17. LIBS=    LIB:lcsr.lib LIB:amiga.lib
  18.  
  19. .c.o:
  20.     @LC $(CFLAGS) $*
  21.  
  22. SimpleRexxExample: $(OBJS) $(LIBS)
  23.     BLink FROM LIB:c.o $(OBJS) TO SimpleRexxExample LIB $(LIBS) SD SC ND
  24.  
  25. SimpleRexx.o: SimpleRexx.c SimpleRexx.h
  26.  
  27. SimpleRexxExample.o: SimpleRexxExample.c SimpleRexx.h
  28.